home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / util / cli / AKCC35.lha / Install_AKCC.script < prev    next >
Encoding:
Text File  |  1994-12-30  |  738 b   |  36 lines

  1. ; $VER: Install_AKCC.script V3.5 (30.12.94)
  2. ; © 1993-94 by Andreas R. Kleinert.
  3. ; This is the Installer Script for AKCC
  4.  
  5. (copylib
  6.   (prompt "Installing akcc_gen0.library ...")
  7.   (help @copylib-help)
  8.   (source "libs/akcc_gen0.library")
  9.   (dest "LIBS:")
  10.   (confirm)
  11. )
  12.  
  13. (copyfiles
  14.   (prompt "Installing AKCC ...")
  15.   (help @copyfiles-help)
  16.   (source "")
  17.   (set akcomdir
  18.           (askdir
  19.              (prompt "Select path to install AKCC commands")
  20.              (help @askdir-help)
  21.              (newpath)
  22.              (default "SYS:AKCC")
  23.           )
  24.   )
  25.   (dest akcomdir)
  26.   (all)
  27.   (confirm)
  28. )
  29.  
  30. (startup "AKCC"
  31.   (prompt "Now modifying your S:User-Startup to use AKCC ...")
  32.   (help @startup-help)
  33.   (command "Assign AKCC: "akcomdir"\n")
  34.   (command "Path AKCC:c ADD\n")
  35. )
  36.